﻿:root {
  --ink: #0f172a;
  --muted: #52657d;
  --brand: #1768a6;
  --brand-strong: #115483;
  --line: #d5e0ec;
  --surface: #ffffff;
  --surface-soft: #f3f8fd;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-lg: 0 30px 52px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 14px 28px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.58rem, 2.5vw, 2.4rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.62;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sales-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.1rem 1.35rem 2.6rem;
  display: grid;
  gap: 1.2rem;
}

.hero-shell,
.timeline-shell,
.benefits-shell,
.testimonials-shell,
.decision-shell,
.faq-shell,
.cta-shell,
.story-block {
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.hero-shell {
  padding: 1.55rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.hero-tag {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--brand-strong);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero-highlight {
  color: var(--brand);
}

.hero-subhead {
  max-width: 58ch;
  font-size: 1.03rem;
}

.hero-listings-shell {
  grid-column: 1 / -1;
  margin: 0.34rem 0 0.08rem;
  padding: 0.78rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: linear-gradient(140deg, #ffffff 0%, #f4f9ff 100%);
  overflow: hidden;
}

.hero-listings-scroll {
  overflow: hidden;
}

.hero-listings-track {
  display: flex;
  width: max-content;
  animation: hero-listings-marquee 30s linear infinite;
  will-change: transform;
}

.hero-listings-track:hover {
  animation-play-state: paused;
}

.hero-listings-group {
  display: flex;
  gap: 0.62rem;
  padding-right: 0.62rem;
}

.hero-listing-card {
  flex: 0 0 clamp(220px, 24vw, 280px);
  border: 1px solid #d2dfec;
  border-radius: 13px;
  background: #ffffff;
  padding: 0.66rem 0.72rem;
  box-shadow: 0 8px 14px rgba(17, 84, 131, 0.08);
}

.hero-listing-title {
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-listing-meta {
  margin: 0 0 0.3rem;
  color: #4f6781;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-listing-pay {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

@keyframes hero-listings-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-email-form {
  margin: 1.12rem 0 1rem;
}

.hero-email-form--spotlight {
  margin: 0.55rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: static;
  overflow: visible;
  display: grid;
  gap: 0.62rem;
}

.hero-email-form--spotlight .hero-email-heading {
  text-align: left;
  margin: 0 0 0.15rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
  color: var(--ink);
}

.hero-email-heading__accent {
  color: var(--brand);
}

.hero-email-form--spotlight .hero-email-row {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0;
  width: 100%;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-email-form--spotlight .hero-email-row:focus-within {
  border-color: transparent;
  box-shadow: none;
}

.hero-email-form--spotlight .hero-email-row input {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.82rem 0.94rem;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(17, 84, 131, 0.16);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-email-form--spotlight .hero-email-row input:focus-visible {
  border-color: #8cbde4;
  outline: 2px solid rgba(36, 123, 188, 0.2);
  outline-offset: 1px;
  box-shadow: 0 14px 30px rgba(17, 84, 131, 0.24);
}

.hero-email-form--spotlight .hero-email-row button {
  justify-self: start;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e79be 0%, #1768a6 58%, #145889 100%);
  padding: 0.78rem 1.18rem;
  white-space: nowrap;
}

.hero-email-form--spotlight .hero-email-row button:hover {
  background: linear-gradient(145deg, #1a6ba8 0%, #13598d 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(23, 104, 166, 0.26);
}

.hero-email-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.62rem;
}

.hero-email-row input {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.82rem 0.94rem;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.95rem;
}

.hero-email-row input:focus-visible {
  border-color: #8cbde4;
  outline: 2px solid rgba(36, 123, 188, 0.2);
  outline-offset: 1px;
}

.hero-email-row button,
.button-link button {
  border: 0;
  border-radius: var(--radius-md);
  padding: 0.82rem 1.08rem;
  background: var(--brand);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hero-email-row button:hover,
.button-link button:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(17, 84, 131, 0.22);
}

.button-link {
  text-decoration: none;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.hero-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 660;
}

.hero-side {
  display: grid;
  gap: 0.8rem;
}

.hero-image-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  padding: 0.74rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.hero-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  padding: 0.72rem 0.66rem;
}

.hero-metrics h3 {
  margin: 0 0 0.2rem;
  color: var(--brand-strong);
  font-size: 1.24rem;
}

.hero-metrics p {
  margin: 0;
  font-size: 0.84rem;
}

.timeline-shell {
  padding: 1.2rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.timeline-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-grid li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.86rem 0.8rem;
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

.timeline-grid span {
  width: 1.64rem;
  height: 1.64rem;
  border-radius: 999px;
  border: 1px solid #bed6ea;
  background: #eaf5ff;
  color: var(--brand-strong);
  display: inline-grid;
  place-items: center;
  font-size: 0.81rem;
  font-weight: 800;
}

.timeline-grid h3 {
  margin: 0;
  font-size: 0.98rem;
}

.timeline-grid p {
  margin: 0;
  font-size: 0.85rem;
}

.story-stack {
  display: grid;
  gap: 1.2rem;
}

.story-block {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.story-block--imagine {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.story-block--tokens {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.story-media {
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  padding: 0.58rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  justify-self: center;
  display: grid;
  place-items: center;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.testimonials-shell {
  padding: 1.24rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

.testimonials-shell h2 {
  margin-bottom: 0.85rem;
}

.testimonials-scroll {
  width: min(100%, 80vw);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  width: max-content;
  animation: testimonials-marquee 34s linear infinite;
  will-change: transform;
}

.testimonials-group {
  display: flex;
  gap: 0.85rem;
  padding: 0.1rem 0.1rem 0.4rem;
}

.testimonial-card {
  flex: 0 0 clamp(260px, 30vw, 360px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1rem;
  display: grid;
  gap: 0.48rem;
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.62;
}

.testimonial-name {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.testimonial-role {
  margin: 0;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonials-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-listings-scroll {
    overflow-x: auto;
  }

  .hero-listings-track {
    animation: none;
  }

  .testimonials-scroll {
    overflow-x: auto;
  }

  .testimonials-track {
    animation: none;
  }
}

.brand-dotcom {
  color: var(--brand);
}

.benefits-shell {
  padding: 1.24rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.benefits-shell h2,
.decision-shell h2 {
  text-align: center;
}

.benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.benefits-list li {
  margin: 0;
  padding: 0.7rem 0.75rem 0.7rem 2.02rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  position: relative;
}

.benefits-list li::before {
  content: "\2713";
  position: absolute;
  left: 0.7rem;
  top: 0.72rem;
  width: 1.02rem;
  height: 1.02rem;
  border-radius: 999px;
  border: 1px solid #c0d7eb;
  background: #eaf5ff;
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.decision-shell {
  padding: 1.24rem;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.faq-shell {
  padding: 1.24rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-shell h2 {
  margin-bottom: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.64rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 0.72rem 0.8rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 780;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--brand-strong);
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0.55rem 0 0;
}

.option-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
}

.option-card--recommended {
  border-color: #b4cfe5;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow-md);
}

.option-media {
  width: min(100%, 500px);
  height: clamp(220px, 30vw, 330px);
  padding: 0.56rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  justify-self: center;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
}

.option-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: static !important;
}

.option-copy {
  position: relative;
  z-index: 1;
}

.option-copy p:last-child {
  margin-bottom: 0;
}

.cta-shell {
  padding: 1.6rem 1.24rem;
  text-align: center;
  border-color: #bdd3e8;
  background: linear-gradient(130deg, #e8f4ff 0%, #f8fcff 100%);
}

.cta-kicker {
  margin: 0 0 0.52rem;
  color: var(--brand-strong);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.cta-shell h2 {
  margin: 0 0 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.cta-actions .button-link:last-child button {
  border: 1px solid #b7d0e4;
  background: #ffffff;
  color: var(--brand-strong);
}

.cta-actions .button-link:last-child button:hover {
  background: #eef7ff;
}

.sales-layout > * {
  min-width: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: rise-in 0.5s ease forwards;
}

.sales-layout > *:nth-child(2) {
  animation-delay: 0.04s;
}

.sales-layout > *:nth-child(3) {
  animation-delay: 0.08s;
}

.sales-layout > *:nth-child(4) {
  animation-delay: 0.12s;
}

.sales-layout > *:nth-child(5) {
  animation-delay: 0.16s;
}

.sales-layout > *:nth-child(6) {
  animation-delay: 0.2s;
}

.sales-layout > *:nth-child(7) {
  animation-delay: 0.24s;
}

.sales-layout > *:nth-child(8) {
  animation-delay: 0.28s;
}

.sales-layout > *:nth-child(9) {
  animation-delay: 0.32s;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-shell,
  .story-block,
  .decision-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-side {
    max-width: 620px;
    width: 100%;
    justify-self: center;
  }

  .story-media,
  .option-media {
    width: min(100%, 620px);
  }
}

@media (max-width: 700px) {
  .sales-layout {
    padding: 1.45rem 0.9rem 2rem;
    gap: 0.95rem;
  }

  .hero-shell,
  .timeline-shell,
  .story-block,
  .benefits-shell,
  .decision-shell,
  .faq-shell,
  .cta-shell {
    padding: 1rem;
  }

  .hero-email-row,
  .hero-metrics,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .button-link button {
    width: 100%;
  }
}
